home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / raystorexa / arexx / fog1.ray < prev    next >
Text File  |  1995-10-21  |  999b  |  59 lines

  1. /***************
  2.  * NAME:          fog1.ray
  3.  * VERSION:       1.0 21.08.1995
  4.  * DESCRIPTION:   Test of fog
  5.  * AUTHORS:       Andreas Heumann
  6.  * BUGS:          none
  7.  * TO DO:         none
  8.  * HISTORY:
  9.  *    DATE     NAME  COMMENT
  10.  *    21.08.95 ah    initial release
  11.  ***************/
  12.  
  13. signal on error
  14.  
  15. options results
  16.  
  17. IF ~show('P','RAYSTORM') THEN DO
  18.     address COMMAND 'run >NIL: <NIL: /RayStorm'
  19.     address COMMAND WaitForPort RAYSTORM
  20. END  
  21.  
  22. address RAYSTORM
  23.  
  24. 'TEXTUREPATH /textures'
  25.  
  26. 'SETSCREEN 160 128'
  27. 'SETCAMERA <0,0,-75> <0,0,0> <0,1,0> 25 20'
  28. 'SETWORLD [0,0,0] [0,0,0] FOGLEN=60 FOGHEIGHT=10'
  29. 'POINTLIGHT <20,20,-40>'
  30.  
  31. 'NEWSURFACE RED'
  32. 'DIFFUSE [255,0,0]'
  33.  
  34. 'NEWSURFACE GREEN'
  35. 'DIFFUSE [0,255,0]'
  36.  
  37. 'NEWSURFACE BLUE'
  38. 'DIFFUSE [0,0,255]'
  39.  
  40. 'SPHERE RED <5,0,0> 3'
  41. 'SPHERE BLUE <10,5,50> 4'
  42. 'SPHERE RED <10,0,10> 4'
  43. 'SPHERE GREEN <-10,-5,80> 5'
  44. 'SPHERE BLUE <-5,0,40> 6'
  45.  
  46. 'STARTRENDER'
  47.  
  48. 'SAVEPIC fog1.iff'
  49.  
  50. 'CLEANUP'
  51.  
  52. exit 0
  53.  
  54. error:
  55. say "Error" rc "in line" sigl ":"
  56. GETERRORSTR rc
  57. say result
  58. exit 0
  59.